home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / PC Tools ThreatFire / tfinstall.exe / {app} / TFGui.exe / HTML / ENABLEDBTN.HTC < prev    next >
Text File  |  2010-01-14  |  564b  |  30 lines

  1.  
  2. <attach event="onmousedown" handler="OnMouseDown" />
  3. <attach event="onmouseup"   handler="OnMouseUp" />
  4. <attach event="onmouseover" handler="OnMouseOver" />
  5. <attach event="onmouseout"  handler="OnMouseOut" />
  6.  
  7. <script type="text/javascript">
  8.  
  9.     function OnMouseDown()
  10.     {
  11.         style.backgroundImage = 'url(enabledbtn3.gif)';
  12.     }
  13.  
  14.     function OnMouseUp()
  15.     {
  16.         style.backgroundImage = '';
  17.     }
  18.  
  19.     function OnMouseOver()
  20.     {
  21.         style.backgroundImage = 'url(enabledbtn2.gif)';
  22.     }
  23.  
  24.     function OnMouseOut()
  25.     {
  26.         style.backgroundImage = '';
  27.     }
  28.  
  29. </script>
  30.